home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-09-08 | 555 b | 33 lines |
- package com.symantec.itools.tools.archive;
-
-
- /**
- * @author Symantec Internet Tools Division
- * @version 1.0
- * @since VCafe 3.0
- */
-
- public class ZIPValidator
- extends TypeValidator
- {
-
- /**
- * @since VCafe 3.0
- */
- protected Options options;
-
- public ZIPValidator(Options options)
- {
- super(options);
- }
-
- /**
- * @param errorMsg TODO
- * @since VCafe 3.0
- */
-
- public boolean validate(StringBuffer errorMsg)
- {
- return (validate(true, errorMsg));
- }
- }